forked from Transparency/kgroad-frontend2
10 lines
139 B
TypeScript
10 lines
139 B
TypeScript
"use client";
|
|
|
|
import NotFound from "@/widgets/NotFound/NotFound";
|
|
|
|
const error = () => {
|
|
return <NotFound />;
|
|
};
|
|
|
|
export default error;
|